home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / Includes_and_Autodocs_3.5 / include / gadgets / space.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-19  |  1.8 KB  |  65 lines

  1. #ifndef GADGETS_SPACE_H
  2. #define GADGETS_SPACE_H
  3. /*
  4. **    $VER: space.h 44.1 (19.10.1999)
  5. **    Includes Release 44.1
  6. **
  7. **  Definitions for the space.gadget BOOPSI class
  8. **
  9. **    (C) Copyright 1987-1999 Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. /*****************************************************************************/
  14.  
  15. #ifndef REACTION_REACTION_H
  16. #include <reaction/reaction.h>
  17. #endif
  18.  
  19. #ifndef INTUITION_GADGETCLASS_H
  20. #include <intuition/gadgetclass.h>
  21. #endif
  22.  
  23. /*****************************************************************************/
  24.  
  25. /* Additional attributes defined by the space.gadget class
  26.  */
  27.  
  28. #define SPACE_Dummy            (REACTION_Dummy + 0x9000)
  29.  
  30. #define SPACE_MinHeight        (SPACE_Dummy+1)
  31.     /* (WORD) Height of space gadget
  32.      * (OM_NEW,OM_SET,OM_UPDATE,OM_GET) */
  33.  
  34. #define SPACE_MinWidth        (SPACE_Dummy+2)
  35.     /* (WORD) Width of space gadget
  36.      * (OM_NEW,OM_SET,OM_UPDATE,OM_GET) */
  37.  
  38. #define SPACE_MouseX        (SPACE_Dummy+3)
  39.     /* (WORD) X Position of Mouse within space gadget
  40.      * (OM_NOTIFY) */
  41.  
  42. #define SPACE_MouseY        (SPACE_Dummy+4)
  43.     /* (WORD) Y Position of Mouse within space gadget
  44.      * (OM_NOTIFY) */
  45.  
  46. #define SPACE_Transparent    (SPACE_Dummy+5)
  47.     /* (BOOL) Will not EraseRect() background before redraw if true.
  48.      * (OM_NEW,OM_SET,OM_UPDATE) */
  49.  
  50. #define SPACE_AreaBox        (SPACE_Dummy+6)
  51.     /* (struct IBox *) Inner area IBox application rendering bounds
  52.      * (OM_GET) */
  53.  
  54. #define SPACE_RenderHook    (SPACE_Dummy+7)
  55.     /* (struct Hook *) render hook is called when the gadget refreshes.
  56.      * (OM_NEW,OM_SET,OM_UPDATE) */
  57.  
  58. #define SPACE_BevelStyle    (SPACE_Dummy+8)
  59.     /* (WORD) Defaults to BVS_NONE (no bevel - see images/bevel.h)
  60.      * (OM_NEW,OM_SET,OM_UPDATE) */
  61.  
  62. /*****************************************************************************/
  63.  
  64. #endif /* GADGETS_SPACE_H */
  65.